home *** CD-ROM | disk | FTP | other *** search
/ PC Shareware 1998 March / PCShareware-3-98.iso / programy / mawin / _SETUP.1 / Investors Edge General Market Indices.qcf < prev    next >
Text File  |  1997-01-24  |  7KB  |  123 lines

  1. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  2. // The Market Analyzer for Windows
  3. // (C) Copyright 1994, 1995, 1996, 1997
  4. //     by Jim Dowdle
  5. // Methods shown herein may be used for no other purpose than
  6. // creating and modifying configuration files for use with this product.
  7. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  8.  
  9. // QuoteList Configuration File
  10.  
  11. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  12.  
  13. // this file contains your Internet Site Path (URL) for the root .qtl file;
  14. // defines the download method;
  15. // and contains parsing instructions to be used by the MAWIN generic
  16. // parsing routines
  17.  
  18. // You may edit it as needed if you choose to change the Site used,
  19. // or if the Site format changes
  20.  
  21. // This method of specifying and decoding Web Pages has been chosen to make it
  22. // "easy" to adapt to new pages or changes in pre-defined pages.
  23. // Some users may not wish to get into this level of detail, and others may find
  24. // it easy to use this specifying/formatting scheme to add new pages to your
  25. // daily downloads, or just to keep up with changes.
  26.  
  27. // If you do not wish modify these files, pre-defined files and updates may become 
  28. // available in the near future.
  29.  
  30. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  31. // This is the Site URL including any prefix characters up to the qutoes to be added,
  32. // which will come from the .qtl file automatically as it executes
  33.  
  34. // Investors Edge General Market Indices
  35.  
  36. //    http://www.irnet.com/scripts/ethos.exe?WWW+p_IEIndices
  37.  
  38. www.irnet.com/scripts/ethos.exe?WWW+p_IEIndices
  39.  
  40. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  41. // the next entry must define the download method.
  42. // the entry will be either "by_page" or "by_quote"
  43. // "by_page" means the page inherently defines the quote information which will be received.
  44. // these are usually index pages which are predefined.
  45.  
  46. // "by_quote" means the quote requests will be appended from the .qtl file automatically
  47.  
  48. by_page
  49.  
  50. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  51. // the next entry tells MAWIN what delimeter character to add between appended quote symbols
  52.  
  53. // for example:
  54. // www2.merrill-lynch.ml.com/htbin/indlink?tick=dis,hd,xrx,spq
  55. // could be a valid request for this page, and the delimeter ',' is used
  56. // other sites may use '+' or other characters as a delimeter
  57.  
  58.  
  59. // (to determine what delimeter is used, bring up the page using your Web Browser,
  60. // request your stock quotes, and observe the delimeter used...usually shown in the
  61. // top text field of your Browser, as a part of the URL.)
  62.  
  63. // if the method is "by_page", enter nothing here; MAWIN will skip this field
  64. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  65. // next, tell MAWIN what character string to look for as a trigger to begin looking for quotes.
  66. // if you decide to customize your own download site, you can pick this string by first bringing
  67. // up the site using a Web Browser, and use "file save" to save the .htm image of the page.
  68. // then, examine the .htm file using any good text editor, such as WordPad, or Notepad.
  69. // first look for a string which will be used as a trigger to begin looking for quotes.
  70. // for this page, there are two types of quotes.  The first trigger phrase is:
  71.  
  72. GENERAL MARKET INDICES
  73.  
  74. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  75. // next, enter the trigger string which indicates the start of a quote
  76. // for this type, it is:
  77.  
  78. <TR><TD><FONT
  79.  
  80. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  81. // MAWIN will automatically find quote data fields as specified by format keywords herein:
  82. // The keywords which may be used are:
  83.  
  84. // Numeric Keyword Identifiers:
  85. // Hi, Low, Bid, Ask, Open, Close, Prev, Change, Volume, Date, PE_Ratio, Dividend, and Temp
  86. // "Temp" will be available to be used to store/handle throwaway numerics between quote data
  87. // "Temp" may be used multiple times
  88.  
  89. // Textual Keyword Identifiers:
  90. // Symbol, Co_name, Time
  91.  
  92. // for this file/site, the parsing commands are:
  93.  
  94. 1                        // lines per quote
  95. NoDate            // Do Not look for Date field (none or manual specify)
  96. Symbol,     Co_name      Close       Change
  97.  
  98. // up to 20 identifier types per quote may be specified
  99. // modifiers may be needed, to make adjustments of scale, such as this case where volume is
  100. // quoted in 1000's of shares, and must be adjusted to shares.
  101. // supported modifiers are '*' and '/'
  102.  
  103. //Volume * 1000
  104.  
  105. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  106. // there may be up to two types of quotes.
  107. // The second trigger phrase and remaining commands are:
  108. // (currently, a maximum of 2 are allowed)
  109.  
  110. //Mutual Funds        // begin looking for new quote pattern
  111. //<tr>                    // indicates start of quote
  112. //1                        // lines per quote
  113. //AutoDate          // will search for date field and remove before processing quote
  114. //Symbol    Close        Prev        Change
  115.  
  116. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  117. // If you have pulled up this file by external brousing, note that it is also accessable
  118. // under the options menu from the MAWIN market analysis environment.
  119.  
  120. // lines which begin with // are ignored, and may be eliminated or reordered as you wish.
  121.  
  122. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  123.